home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
TCL1
/
GRAPH_FO
/
(GRAPH
/
GRAPH_HE
/
GRVERTEX.H
< prev
Wrap
Text File
|
1991-02-15
|
916b
|
37 lines
/******************************************************************************
GrVertex.h
Graph methods in Object C.
This implements the GrVertex class.
SUPERCLASS = GrNode
Copyright ⌐ 1991 Maarten Meijer. All rights reserved.
CIS 100016,1764; FidoNet 2:512/114
*******************************************************************************/
#define _H_GrVertex
/* includes */
#include "GrNode.h"
/* class definition */
struct GrVertex : GrNode {
Point center;
long blokno; /* for debugging purposes */
void IGraphNode(void); /* OVERRIDE */
/* Drawing methods */
void _Draw(void); /* OVERRIDE */
void Draw(void); /* OVERRIDE */
/* Location methods */
void SetRegion(void); /* OVERRIDE */
void SetCenter(Point thePoint);
Point GetCenter(void);
/* Updating methods */
void GetRect(Rect *r); /* OVERRIDE */
Boolean NodeInRect(Rect *r); /* OVERRIDE */
};